Address Verification
Validates and standardizes addresses to ensure accuracy and compliance with postal standards, reducing errors in mail delivery and location-based services.
Endpoint URL
https://api.propertyreach.com/v1/address-verificationCopy
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
streetNumber
string
What's the property street number
preDirection
string
Street address pre-direction
streetName
string
What's the property street name
suffix
string
Owner name suffix
postDirection
string
Street post-direction / quadrant.
unitName
string
Apartment / unit type.
unit
string
Apartment Unit Number
county
string
The county where the property is located.
zip4
string
Zip4
fips
string
The Federal Information Processing Standard (FIPS) code for the property's location.
carrierRoute
string
Postal carrier route code.
verified
boolean
Indicator on whether address is a valid US postal address.
status
decimal
required
Response status
message
string
required
Response message.
requestId
string
Unique ID for the request.
resultCount
int
Number of results found
billableRequests
int
billableAmount
decimal
- Source
- JSON
var body = {};
var options = {
method: 'POST',
body: JSON.stringify(body),
headers: {
'x-api-key': 'test_examp****'
}
};
var url = 'https://api.propertyreach.com/v1/address-verification';
fetch(url, options)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
{
}